home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / CTSELECT / QEDIT / QED28.ZIP / Q28.TXT < prev   
Text File  |  1992-07-29  |  2KB  |  60 lines

  1. ZIP File list:
  2.  
  3. Q1.mac
  4. Q28.bat
  5. dummy.txt
  6.  
  7. -----------------------------------
  8.  
  9. To patch Qedit 2.1x to show 28 lines (in 43/50 mode) and start up as 28 lines:
  10. (You =must= have a VGA monitor and should use the newest Qedit version)
  11.  
  12. 1. Hex edit a =backup copy= of Qedit.exe using any of the hex editors out  *(A)
  13. there that has a search feature. (g ibmff, keywords: Hex, Edit)
  14.  
  15.         Locate pattern:  12 11 B3 00 CD 10 and replace 12 with 11.
  16.  
  17. 2. copy the 2 files from the ZIP file into your Qedit directory (dummy.txt,
  18.    and q1.mac)
  19.  
  20. 3. Start up Qedit with a command line macro using the dummy file 'dummy.txt'.
  21.  
  22.         At the DOS command line:
  23.  
  24.         C:\q dummy /eq1.mac            ;the /e is a new feature in ver 2.15
  25.                                        ;allowing a startup macro when
  26.                                        ;loading a file
  27.  
  28.         or as a line in a batch file:
  29.  
  30.   (see) Q28.bat
  31.  
  32. *(you must have a copy of dummy.txt - a file with one character in it, a
  33. space, and the q1.mac file in the current directory.)
  34.  
  35. -------------------------------
  36.  
  37. What is q1.mac?
  38.  
  39. It is an edited macro file that will bypass the main screen and invoke a
  40. ctrl-F1.  This switches to the new 28 line mode.  For convenience the macro
  41. continues and prompts you for a file from a list in that directory.  Since
  42. I could not record a macro from within Qedit that would end on a 'prompt
  43. for files window', I had to write the macro in Hex.  To do this I ran and
  44. recorded several macros and examined the code.
  45.  
  46.  
  47. Enjoy!!
  48.  
  49. -------------------------------
  50. *(A)
  51. Using Debug:
  52.  for QEDIT 2.15:  Change byte at 693E from 12 hex to 11 hex
  53.  
  54.  REN Q.EXE Q.BIN
  55.  DEBUG Q.BIN <Enter>
  56.  -E 693E 11  <Enter>
  57.  -W <Enter>
  58.  -Q <Enter>
  59.  REN Q.BIN Q.EXE
  60.